Stack Trace Logger [migrated]

Posted by Chris Okyen on Programmers See other posts from Programmers or by Chris Okyen
Published on 2012-12-08T19:04:47Z Indexed on 2012/12/08 23:36 UTC
Read the original article Hit count: 429

Filed under:
|

I need to write a parent Java class that classes using recursion can extend. The parent class will be be able to realize whenever the call stack changes ( you enter a method, temporarily leave it to go to another method call, or you are are finsihed with the method ) and then print it out. I want it to print on the console, but clear the console as well every time so it shows the stack horizantaly so you can see the height of each stack to see what popped off and what popped on... Also print out if a baseline was reached for recursive functions.

First. How can I using the StackTraceElements and Thread classes to detect automatically whenever the stack has popped or pushed an element on without calling it manually?

Second, how would I do the clearing thing?

For instance , if I had the code:

public class recursion(int i)
{ 
 private static void recursion(int i)
 {
      if( i < 10)
         System.out.println('A');
      else
         {
           recursion(i / 10 );
           System.out.println('B');
         }
  } 
 public static void main(String[] argv)
  {
    recursion(102);
  }

}

It would need to print out the stack when entering main(), when entering recursion(102) from main(), when it enters recursion(102 / 10), which is recursion(10), from recursion(102), when it enters recursion(10 / 10), which is recursion(1) from recursion(10). Print out a message out when it reaches the baseline recursion(1).. then print out the stacks of reversed revisitation of function recursion(10), recursion(102) and main(). finally print out we are exiting main().

© Programmers or respective owner

Related posts about java

Related posts about stacktrace